forked from abhinandanwadwa/HarryDS21.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLogin Page.html
More file actions
93 lines (59 loc) · 3 KB
/
Login Page.html
File metadata and controls
93 lines (59 loc) · 3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="sipStyles.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT" crossorigin="anonymous">
<!-- <link href="https://fonts.googleapis.com/css2?family=Ubuntu&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto&family=Ubuntu&display=swap" rel="stylesheet"> -->
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@300&family=Roboto&family=Ubuntu&display=swap" rel="stylesheet">
<script src="sipIndex.js" charset="utf-8" async></script>
<title>Log in Page</title>
</head>
<body>
<!-- <h1>Title</h1>
<form action="index.html" method="post">
</form> -->
<section class="vh-100" style="background-color: #DFD3C3;">
<div class="container py-5 h-100">
<div class="row d-flex justify-content-center align-items-center h-100">
<div class="col-12 col-md-8 col-lg-6 col-xl-5">
<h3 class="mb-5" id="title">Lorem ipsum</h3>
<div class="card shadow-2-strong" style="border-radius: 1rem;">
<div class="card-body p-5 text-center">
<!-- <h3 class="mb-5" id="title">Dummy Title</h3> -->
<div class="form-outline mb-4">
<input type="email" class="form-control form-control-lg" placeholder="Username" />
<!-- <label class="form-label">Username</label> -->
</div>
<div class="form-outline mb-4">
<input type="password" class="form-control form-control-lg" placeholder="Password" />
<!-- <label class="form-label">Password</label> -->
</div>
<!-- Checkbox -->
<div class="form-check d-flex justify-content-start mb-4">
<input class="form-check-input" type="checkbox" value="" id="checkbox" />
<label class="form-check-label" id="check-btn"> Remember password </label>
</div>
<button class="btn btn-primary btn-lg btn-block" type="submit">Login</button>
<!-- <hr class="my-4">
<button class="btn btn-lg btn-block btn-primary" style="background-color: #dd4b39;"
type="submit"><i class="fab fa-google me-2"></i> Sign in with google</button>
<button class="btn btn-lg btn-block btn-primary mb-2" style="background-color: #3b5998;"
type="submit"><i class="fab fa-facebook-f me-2"></i>Sign in with facebook</button> -->
</div>
</div>
</div>
</div>
</div>
</section>
<footer class="bg-light text-center text-lg-start">
<!-- Copyright -->
<div class="text-center p-3" style="background-color: #D0B8A8;">
© <span class="footer-year"></span> Copyright:
<a class="text-dark" href="">dositamet.com</a>
</div>
<!-- Copyright -->
</footer>
</body>
</html>